ValueQuery`2 Model

A value query represents a simple query for a set of distinct string values for a given "reporting string property"

Constant
System.Int32 MAX_LIMIT_VALUE = 500

The maximum value for Limit

Required
ReportString : object

The ReportString property to query. Setting more than one value to true will result in an error.

Nullable
Limit : number (int)

The maximum number of values to return. If not specified, defaults to MAX_LIMIT_VALUE. Exceeding MAX_LIMIT_VALUE will result in an error

Nullable
From : number (int)

0 based index to start seeking values from. Defaults to 0

Nullable
ReportStringFilter : object

The field(s) to filter the result set to

MatchAny : bool

If true, ANY of the included filter conditions must be matched. otherwise ALL must be matched

MatchWildcards : bool

If true, any % characters in the string filter literals will be treated as "Any string of zero or more characters".

If true, ONLY the Value property from ValueFilterCondition will be acceptable.

Otherwise % will match as a regular character.

MatchEmptyValues : bool

If true, empty string values will be included in the result set.

If false/omitted: Any dimension with an empty value will be omitted from the result set

Example
{
  "ReportString": {},
  "Limit": 321,
  "From": 321,
  "ReportStringFilter": {},
  "MatchAny": true,
  "MatchWildcards": true,
  "MatchEmptyValues": true
}